runtime.mheap.curArena (field)
15 uses
runtime (current package)
mheap.go#L193: curArena struct {
mheap.go#L1352: end := h.curArena.base + ask
mheap.go#L1354: if nBase > h.curArena.end || /* overflow */ end < h.curArena.base {
mheap.go#L1364: if uintptr(av) == h.curArena.end {
mheap.go#L1367: h.curArena.end = uintptr(av) + asize
mheap.go#L1372: if size := h.curArena.end - h.curArena.base; size != 0 {
mheap.go#L1376: sysMap(unsafe.Pointer(h.curArena.base), size, &memstats.heap_sys)
mheap.go#L1384: h.pages.grow(h.curArena.base, size)
mheap.go#L1388: h.curArena.base = uintptr(av)
mheap.go#L1389: h.curArena.end = uintptr(av) + asize
mheap.go#L1396: nBase = alignUp(h.curArena.base+ask, physPageSize)
mheap.go#L1400: v := h.curArena.base
mheap.go#L1401: h.curArena.base = nBase
The pages are generated with Golds v0.4.9. (GOOS=linux GOARCH=amd64)